type github.com/jackc/pgx/v5.dbSimulatedNestedTx
13 uses
github.com/jackc/pgx/v5 (current package)
tx.go#L176: return &dbSimulatedNestedTx{tx: tx, savepointNum: tx.savepointNum}, nil
tx.go#L288: type dbSimulatedNestedTx struct {
tx.go#L295: func (sp *dbSimulatedNestedTx) Begin(ctx context.Context) (Tx, error) {
tx.go#L304: func (sp *dbSimulatedNestedTx) Commit(ctx context.Context) error {
tx.go#L317: func (sp *dbSimulatedNestedTx) Rollback(ctx context.Context) error {
tx.go#L328: func (sp *dbSimulatedNestedTx) Exec(ctx context.Context, sql string, arguments ...any) (commandTag pgconn.CommandTag, err error) {
tx.go#L337: func (sp *dbSimulatedNestedTx) Prepare(ctx context.Context, name, sql string) (*pgconn.StatementDescription, error) {
tx.go#L346: func (sp *dbSimulatedNestedTx) Query(ctx context.Context, sql string, args ...any) (Rows, error) {
tx.go#L357: func (sp *dbSimulatedNestedTx) QueryRow(ctx context.Context, sql string, args ...any) Row {
tx.go#L363: func (sp *dbSimulatedNestedTx) CopyFrom(ctx context.Context, tableName Identifier, columnNames []string, rowSrc CopyFromSource) (int64, error) {
tx.go#L372: func (sp *dbSimulatedNestedTx) SendBatch(ctx context.Context, b *Batch) BatchResults {
tx.go#L380: func (sp *dbSimulatedNestedTx) LargeObjects() LargeObjects {
tx.go#L384: func (sp *dbSimulatedNestedTx) Conn() *Conn {